home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PWAULTP3.ZIP
/
PWAPRGMS.A02
/
PWA95
/
PWAEBL10.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-04-09
|
1KB
|
44 lines
@echo off
rem
rem -------------------------------------------------------------------------
rem Enhanced Bulletin Lister v1.0 by Drew [PWA]
rem -------------------------------------------------------------------------
rem
if .%1==. goto help
if .%2==. goto help
if not exist %1 goto help
mkpcbtxt %1 /i:224 "%%2\STUFF.ME"
mkpcbtxt %1 /i:611 "%%2\STUFF.ME"
goto done
:help
cls
echo.
echo To install Enhanced Bulletin Lister, use the following syntax:
echo.
echo install PCBTEXT PPEDIR
echo.
echo PCBTEXT is the full pathname of your PCBTEXT file.
echo.
echo PPEDIR is the directory of where EBL is located.
echo.
echo Example:
echo.
echo install C:\PCB\GEN\PCBTEXT C:\PPE\EBL
echo.
pause
:done
echo.
echo Enhanced Bulletin Lister v1.0 by Drew [PWA]
echo.
echo Remember to add EBL.PPE as the "B" command to your CMD.LST!
echo ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
echo.
echo Gawd I hate batch files. T/csh-shell scripts would have been so
echo much nicer. :) --Drew
echo.